home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / intuition / autorequest.c < prev    next >
C/C++ Source or Header  |  1996-11-08  |  2KB  |  72 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: autorequest.c,v 1.3 1996/11/08 11:28:00 aros Exp $
  4.     $Log: autorequest.c,v $
  5.     Revision 1.3  1996/11/08 11:28:00  aros
  6.     All OS function use now Amiga types
  7.  
  8.     Moved intuition-driver protos to intuition_intern.h
  9.  
  10.     Revision 1.2  1996/10/24 15:51:17  aros
  11.     Use the official AROS macros over the __AROS versions.
  12.  
  13.     Revision 1.1  1996/10/21 17:06:48  aros
  14.     A couple of new functions
  15.  
  16.  
  17.     Desc:
  18.     Lang: english
  19. */
  20. #include "intuition_intern.h"
  21.  
  22. /*****************************************************************************
  23.  
  24.     NAME */
  25.     #include <intuition/intuition.h>
  26.     #include <clib/intuition_protos.h>
  27.  
  28.     AROS_LH8(BOOL, AutoRequest,
  29.  
  30. /*  SYNOPSIS */
  31.     AROS_LHA(struct Window    *, window, A0),
  32.     AROS_LHA(struct IntuiText *, body, A1),
  33.     AROS_LHA(struct IntuiText *, posText, A2),
  34.     AROS_LHA(struct IntuiText *, negText, A3),
  35.     AROS_LHA(ULONG             , pFlag, D0),
  36.     AROS_LHA(ULONG             , nFlag, D1),
  37.     AROS_LHA(ULONG             , width, D2),
  38.     AROS_LHA(ULONG             , height, D3),
  39.  
  40. /*  LOCATION */
  41.     struct IntuitionBase *, IntuitionBase, 58, Intuition)
  42.  
  43. /*  FUNCTION
  44.  
  45.     INPUTS
  46.  
  47.     RESULT
  48.  
  49.     NOTES
  50.  
  51.     EXAMPLE
  52.  
  53.     BUGS
  54.  
  55.     SEE ALSO
  56.  
  57.     INTERNALS
  58.  
  59.     HISTORY
  60.     29-10-95    digulla automatically created from
  61.                 intuition_lib.fd and clib/intuition_protos.h
  62.  
  63. *****************************************************************************/
  64. {
  65.     AROS_LIBFUNC_INIT
  66.     AROS_LIBBASE_EXT_DECL(struct IntuitionBase *,IntuitionBase)
  67.  
  68.     return FALSE; /* TODO */
  69.  
  70.     AROS_LIBFUNC_EXIT
  71. } /* AutoRequest */
  72.